Easy2Siksha.com
• Truth Table:
o Input (A=0, B=0) → Output = 1
o All other inputs → Output = 0
Constructing Other Gates Using NOR
1. NOT Gate: Connect both inputs of a NOR gate together. The output will be the
inverse of the input.
o Example: Input A → NOR(A, A) = NOT A.
2. OR Gate: First create a NOR gate, then invert its output using another NOR-as-NOT.
o Example: OR(A, B) = NOT(NOR(A, B)).
3. AND Gate: Use De Morgan’s law again. AND can be built by inverting inputs and then
applying NOR.
o Example: AND(A, B) = NOR(NOT A, NOT B).
4. XOR Gate: Similar to NAND, multiple NOR gates can be combined to form XOR.
Example to Make It Relatable
Think of universal gates like LEGO blocks. With just one type of block, you can build houses,
cars, or towers. Similarly, with just NAND gates (or just NOR gates), you can build all the
other logic gates and eventually complex circuits like calculators, processors, or memory
units.
Characteristics of Universal Gates
• Versatility: Can construct any other gate.
• Cost-Effective: Easier to mass-produce one type of gate.
• Simplifies Design: Reduces complexity in circuit manufacturing.
• Foundation of Digital Electronics: Used in designing CPUs, memory, and other digital
systems.
Final Thought
A Universal Gate is a logic gate that can be used to build all other gates. NAND and NOR are
the two universal gates. By combining them cleverly, we can construct NOT, AND, OR, XOR,
and more. They are the backbone of digital electronics, proving that even with limited tools,
we can create complex systems.
SECTION-C
5. Design and explain an adder of your choice.
Ans: What is an Adder?